home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / rayview / version.c < prev   
C/C++ Source or Header  |  1994-08-09  |  1KB  |  45 lines

  1. /*
  2.  * version.c
  3.  *
  4.  * Copyright (C) 1989, 1991, Craig E. Kolb
  5.  * All rights reserved.
  6.  *
  7.  * This software may be freely copied, modified, and redistributed
  8.  * provided that this copyright notice is preserved on all copies.
  9.  *
  10.  * You may not distribute this software, in whole or in part, as part of
  11.  * any commercial product without the express consent of the authors.
  12.  *
  13.  * There is no warranty or other guarantee of fitness of this software
  14.  * for any purpose.  It is provided solely "as is".
  15.  *
  16.  * version.c,v 4.1 1994/08/09 08:08:08 explorer Exp
  17.  *
  18.  * version.c,v
  19.  * Revision 4.1  1994/08/09  08:08:08  explorer
  20.  * Bump version to 4.1
  21.  *
  22.  * Revision 1.2  1994/08/09  06:44:42  explorer
  23.  * Altered the way version numbers are maintained and printed.
  24.  *
  25.  * Revision 1.1.1.1  1994/08/08  04:52:30  explorer
  26.  * Initial import.  This is a prerelease of 4.0.6enh3, or 4.1 possibly.
  27.  *
  28.  * Revision 4.0  91/07/17  14:55:52  kolb
  29.  * Initial version.
  30.  * 
  31.  */
  32. #include "rayshade.h"
  33. #include "patchlevel.h"
  34. #include "stats.h"
  35.  
  36. void
  37. VersionPrint()
  38. {
  39.     extern char rcsid[];
  40.  
  41.     fprintf(Stats.fstats,
  42.         "rayview: %d.%d\nPatch level %d\n",
  43.             MAJORVERSION, MINORVERSION, PATCHLEVEL);
  44. }
  45.